8
|
How do I put a picture on the control's center top side

with thisform.ScrollBar1
.Picture = thisform.ScrollBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 1
.Value = 50
.Object.VisiblePart(640) = .F.
.BackColor = 0x80000004
endwith
|
7
|
How do I put a picture on the control's right top corner

with thisform.ScrollBar1
.Picture = thisform.ScrollBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 2
.Object.VisiblePart(640) = .F.
.BackColor = 0x80000004
.Value = 50
endwith
|
6
|
How do I put a picture on the control's left top corner

with thisform.ScrollBar1
.Picture = thisform.ScrollBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 0
.Object.VisiblePart(640) = .F.
.BackColor = 0x80000004
.Value = 50
endwith
|
5
|
How do I put a picture on the control's background

with thisform.ScrollBar1
.Picture = thisform.ScrollBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.Object.VisiblePart(640) = .F.
.BackColor = 0x80000004
endwith
|
4
|
How can I change the size of control's font

with thisform.ScrollBar1
.Font.Size = 12
.ForeColor = RGB(255,0,0)
.Object.Caption(256) = "<img>0</img>thumb"
endwith
|
3
|
How do I change the control's font

with thisform.ScrollBar1
.Font.Name = "Tahoma"
.ForeColor = RGB(255,0,0)
.Object.Caption(256) = "<img>0</img>thumb"
endwith
|
2
|
How can I change the control's foreground color

with thisform.ScrollBar1
.ForeColor = RGB(255,0,0)
.Object.Caption(256) = "<img>0</img>thumb"
endwith
|
1
|
How can I change the control's background color

with thisform.ScrollBar1
.BackColor = RGB(0,255,0)
.Object.VisiblePart(640) = .F.
endwith
|